type github.com/coder/websocket.opcode

9 uses

	github.com/coder/websocket (current package)
		frame.go#L16: type opcode int
		frame.go#L20: 	opContinuation opcode = iota
		frame.go#L42: 	opcode opcode
		frame.go#L65: 	h.opcode = opcode(b & 0xf)
		stringer.go#L29: func (i opcode) String() string {
		write.go#L58: 	opcode opcode
		write.go#L129: 	mw.opcode = opcode(typ)
		write.go#L231: func (c *Conn) writeControl(ctx context.Context, opcode opcode, p []byte) error {
		write.go#L243: func (c *Conn) writeFrame(ctx context.Context, fin bool, flate bool, opcode opcode, p []byte) (_ int, err error) {